home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
United Public Domain Gold 4
/
United Public Domain Gold 4.iso
/
fredfish
/
ff.0014.dms
/
ff.0014.adf
/
dex
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-04-10
|
728b
|
55 lines
#
# FILE
#
# Makefile make dex utility and documentation
#
# KEY WORDS
#
# dex
# make files
#
# SYNOPSIS
#
# make dex
# make doc
#
# DESCRIPTION
#
# Contains instructions to the UNIX "make" utility for
# building the dex task and dex documents.
#
# AUTHOR
#
# Fred Fish
#
#
FILES = Makefile dex.h hashtbl.h dex.y dex.l dex0.c dex1.c dex2.c \
hashtbl.c .dexrc
OBJECTS = dex.o dex0.o dex1.o dex2.o hashtbl.o
dex : $(OBJECTS)
cc $(OBJECTS) -ly -ll -o dex
dex.o : dex.lo dex.c
dex0.o dex1.o dex2.o : dex.h hashtbl.h
hashtbl.o : hashtbl.h
dex.c : dex.y
yacc dex.y
mv y.tab.c dex.c
dex.lo : dex.l
lex dex.l
mv lex.yy.c dex.lo
doc : dex.doc
dex.doc : dex.ms
nroff -ms dex.ms >dex.doc
all : dex doc